home *** CD-ROM | disk | FTP | other *** search
Text File | 1998-05-01 | 362 b | 23 lines | [TEXT/SPM ] |
- /* mac06©1998 by HNS/DSITRI hns@computer.org
- ** netinet/in_system.h
- ** 01.05.1998 HNS pulled out from ping.c
- */
-
- #pragma once
-
- /* convert host to network octet order */
-
- #define htonl(l) (l)
- #define htons(s) (s)
- #define ntohl(l) (l)
- #define ntohs(s) (s)
-
- typedef unsigned char u_char;
- typedef unsigned short u_short;
- typedef unsigned long u_long;
-
- /* EOF */
-
-
-
-